home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Informática Multimedia 1995 April
/
Informatica Multimedia CD - Epimundo.iso
/
DOS
/
FILE_CHG
/
AWK.ZIP
/
GCD.AWK
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1987-12-10
|
286 b
|
11 lines
{
arg1 =$1; arg2 = $2;
while (arg1 != arg2) {
if (arg1 > arg2)
arg1 -= arg2
else
arg2 -= arg1
}
print "The greatest common divisor of", $1, "and", $2, "is", arg1
}